home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / gnu / gawk / gawk213b.zoo / test / plus-min.awk < prev    next >
Text File  |  1991-05-20  |  199b  |  9 lines

  1. {
  2.          if ($1 == "-")
  3.                 print "minus"
  4.          if ($1 == "+")
  5.                 print "plus"
  6.          if (($1 != "-") && ($1 != "+"))
  7.                 print "something else"
  8. }
  9.